body {
    /*background:#222222;*/
    font-family:'Roboto',sans-serif;
    font-size:11pt;
}

#title {
    font-size:30pt;    
    text-align:center;
    color:#222222;
    font-weight:bold;
    margin:30px 0;
}

#uploaders {
    margin:10px;
}

#uploaders table {
    width:50%;
    margin:auto;
}

#uploaders table td {
    width:50%;
}

#uploaders .menu {
    width:90%;
    margin:auto;
}

#uploaders .menu a {
    aspect-ratio:1/1;
    display:flex;
    align-items:center;
    background:#F8F9FA;
    justify-content:center;
    font-size:26pt;
    color:#222222;
    text-decoration:none;
    box-shadow:inset 0 0 50px 5px rgba(0, 0, 0, 0.1);
    transition:box-shadow 0.3s ease-in-out;
    font-weight:bold;
}
#uploaders .menu a:hover{
    box-shadow:inset 0 0 50px 5px rgba(0, 0, 0, 0.2);
    color:#0067C0;    
}

#uploaders .menu a#agenda {
    position:relative;
    overflow:hidden;
    display:flex;
    z-index:1;
}
#uploaders .menu a#agenda::before {
    content:"";
    background-image:url('/images/agenda.png');
    background-size:150%;
    background-position:center;
    background-repeat:no-repeat;
    position:absolute; 
    top:0;
    left:0;
    right:0;
    bottom:0;    
    opacity:0.1;
    z-index:-1;
    transform:rotate(-10deg) scale(1.1);
    transition:transform 0.3s ease-in-out;
}
#uploaders .menu a#agenda:hover::before {
    transform:rotate(-5deg) scale(1.2);
}

.uploader {
    background:#F8F9FA;
    width:100%;
}

.uploader .spacer {
    padding:15px;
}

.uploader .label {
    margin:0 0 8px 0;
}

.event {
    width:300px;
    height:192px;
    margin:3px 3px 3px 3px;
    display:inline-block;
    border:1px solid #CDCDCD;
    border-radius:4px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    box-shadow:inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    cursor:pointer;
    overflow:hidden;
}

.event::before {
    content: "";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:inherit;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    transition:transform 0.25s ease;
    z-index:-1;
    background-image:var(--bg-image);
}

.event:hover::before {
    transform: scale(1.15);
}

.event .date {
    width:43px;
	height:56px;
    position:absolute;
	border:1px solid #222222;
	top:5px;
    right:5px;
	color:#222222;
    background:rgba(255, 255, 255, 0.6);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
}

.event .date .year {
    width:43px;
    height:15px;
    background:#222222;
    font-size:10pt;
    color:white;
    text-align:center;
    line-height:15px;
    font-weight:bold;
}

.event .date .month {
    width:43px;
    height:15px;
    font-size:10pt;
    text-align:center;
    line-height:15px;
}

.event .date .day {
    width:43px;
    height:26px;
    font-size:22pt;
    text-align:center;
    line-height:24px;
    font-weight:bold;
}

.event .footer {
    position:absolute;
    bottom:0px;
    width:100%;
    background:rgba(255, 255, 255, 0.5);
    border-radius:0 0 4px 4px;
    box-shadow:0px -2px 10px 0px rgba(0, 0, 0, 0.2);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    padding:2px 0 0 0;
}

.event .footer div {
    width:calc(100% - 10px);
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:10pt;
    color:#222222;
    margin:0 0 0 5px;
}

.event .footer span.name {
    font-weight:bold;
}

.accepted_formats {
    font-size:8pt;
    color:#908C8F;
    margin:8px 0 0 0;
}

.error p {
    color:#E01014;
    text-align:center;
}

.category {
    margin:0 0 20px 0;
}

.category .inner {
    margin:0 0 5px 0;
    border:none;
    cursor:pointer;  
}

.category .inner span {
    font-size:12pt;
    font-weight:bold;
}

.category .inner .color {
    width:24px;
    height:24px;
    display:inline-block;
    vertical-align:middle;
    margin:0 10px 0 0;    
}

.edit_event {
    color:#908C8F;
}

.edit_event input,
.edit_event select {
    height:28px;
    width:100%;
    font-family:'Roboto',sans-serif;
    font-size:11pt;
    color:#222222;
    border:1px solid #CDCDCD;
}

#update_category {
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(255, 255, 255, 0.5);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
    top:0;
    left:0;
    display:flex;
    justify-content:center;
    align-items:center;
}

#update_category .box {
    width:500px;
    /*height:300px;*/
    background:#F8F9FA;
    box-shadow:0 0 20px 10px rgba(0, 0, 0, 0.2);
}

#update_category .box .top {
    height:40px;
    background:#222222;
    color:#F8F9FA;
    line-height:40px;
    padding:0 0 0 10px;
}

#update_category .box #content {
    /*height:200px;*/
    padding:10px;
}

#update_category .box #content .guid {
    color:#CDCDCD;
}

#update_category .box #content div {
    margin:5px;
}

#update_category .box .bottom {
    height:40px;
    text-align:right;
    background:#FFFFFF;
    padding:10px 20px 0 0;
}

.button {
    height:20px;
    background:#0067C0;
    color:#F8F9FA;
    display:inline-block;
    padding:5px 10px;
    cursor:pointer;
}